(function () {
	var pars  = [0,'Весна','Лето','Осень','Зима'];
	var now   = new Date();
	var month = now.getMonth() + 1;
	var date  = now.getDate();
	var year  = now.getYear();
	var season;
	if (month > 1 && month <= 2) season = pars[4];
	if (month > 2 && month <= 5) season = pars[1];
	if (month > 5 && month <= 8) season = pars[2];
	if (month > 8 && month <= 11) season = pars[3];
	if (month == 12) season = pars[4];
	if (year < 2000) year = year + 1900;
	document.write(season);
})();